home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / instutils / startup.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-30  |  133 b   |  11 lines

  1. /* Minimal startup code. */
  2.  
  3. #include <exec/types.h>
  4.  
  5. IMPORT LONG tinymain (VOID);
  6.  
  7. LONG ___entry (VOID)
  8. {
  9.   return (tinymain ());
  10. }
  11.